x86/mm: Fix operator associativity bug in mm-locks.h
authorTim Deegan <tim@xen.org>
Thu, 12 Jan 2012 16:39:05 +0000 (16:39 +0000)
committerTim Deegan <tim@xen.org>
Thu, 12 Jan 2012 16:39:05 +0000 (16:39 +0000)
In an order-enforcing wrapper for an "external" recursive lock,
we aim to increment/decrement a recurse count and only update the
lock ordering on zero counts.

Unfortunately we incrementing/decrementing the pointer to the
recurse count, rather than the count itself.

Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.org>
Acked-by: Tim Deegan <tim@xen.org>
Committed-by: Tim Deegan <tim@xen.org>
xen/arch/x86/mm/mm-locks.h

index 738b27c6c7cf9f2737c56948c4d6fc643e8a2b16..058de9a943f2ca983d78b9218238f8d2c43c60d9 100644 (file)
@@ -81,7 +81,7 @@ static inline void _mm_enforce_order_lock_post(int level, int *unlock_level,
 {
     if ( recurse_count )
     {
-        if ( *recurse_count++ == 0 )
+        if ( (*recurse_count)++ == 0 )
         {
             *unlock_level = __get_lock_level();
         }
@@ -125,7 +125,7 @@ static inline void mm_enforce_order_unlock(int unlock_level,
     if ( recurse_count )
     {
         BUG_ON(*recurse_count == 0);
-        if ( *recurse_count-- == 1 )
+        if ( (*recurse_count)-- == 1 )
         {
             __set_lock_level(unlock_level);
         }